home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 60.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  492b  |  23 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. #define    NEWLINE '\n'
  9. #define    NULL '\0'
  10. #define    MAX 80
  11. #define    ESC '\033'
  12. main()
  13. {
  14.     char    array[MAX];
  15.     int    i=0;
  16.     do{
  17.         array[i]=getchar();
  18.         if(array[i]==ESC)
  19.             printf("An escape has been entered\n");
  20.     }while(array[i] != NEWLINE && i++ < MAX );
  21.     array[--i]=NULL;
  22. }
  23.